/* theme-fancy.css */

body {
  background: #020617;
  color: white;
}

/* glow orbs */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.6;
}

body::before {
  background: #3b82f6;
  top: -100px;
  left: -100px;
}

body::after {
  background: #a855f7;
  bottom: -150px;
  right: -150px;
}

/* fancy hero */
.hero h1 {
  font-size: 3.5rem;
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* cards glow */
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}